home *** CD-ROM | disk | FTP | other *** search
/ 3D Game Programming All in One / 3D Game Programming All in One Disc.iso / 3D2E / RESOURCES / CH20 / creator / main.cs
Text File  |  2006-08-04  |  704b  |  27 lines

  1. //-----------------------------------------------------------------------------
  2. // Torque Engine
  3. // Copyright (c) GarageGames.Com
  4. //-----------------------------------------------------------------------------
  5. //loadDir("common");
  6.  
  7. package Creator
  8. {
  9.    function onStart()
  10.    {
  11.       Parent::onStart();
  12.       echo( "\n--------- Initializing: Torque Creator ---------" );
  13.       
  14.       // Scripts
  15.       exec("./editor/editor.cs");
  16.       exec("./editor/particleEditor.cs");
  17.       exec("./scripts/scriptDoc.cs");
  18.       
  19.       // Gui's
  20.       exec("./ui/creatorProfiles.cs");
  21.       exec("./ui/InspectDlg.gui");
  22.       exec("./ui/GuiEditorGui.gui");
  23.    }
  24. };
  25.  
  26. activatePackage( Creator );
  27.